The ARGBColor structure specifies a color with alpha, red, green, and blue values.
struct ARGBColor {
unsigned short alpha;
unsigned short red;
unsigned short green;
unsigned short blue;
};
typedef struct ARGBColor ARGBColor;